function Isok()
  {
if(document.frm.tid.options[document.frm.tid.selectedIndex].value=="" && document.frm.cid.options[document.frm.cid.selectedIndex].value=="")
  {alert("Select Town or County");}
  else{document.frm.submit();}
  }


 function townchk()
  {
if(document.frm.tid.options[document.frm.tid.selectedIndex].value!="")
  {document.frm.submit();}
  }


 function countychk()
  {
if(document.frm.cid.options[document.frm.cid.selectedIndex].value!="")
  {document.frm.submit();}
  }
 
// JavaScript Document
