function showHide(){var a=document.getElementById("areas").value;for(var b=1;b<5;b++){if(b==a){document.getElementById("div"+b).style.display="block"}else{document.getElementById("div"+b).style.display="none"}}};
