function validate(frm){
if (frm.sCity.value == ""){
alert("Please Enter A City.");
return false;
}
return true;
}
function validate1()
{
  if(document.aptmap.iMinBedroomsID1.value == "0")
  {
    alert("Please select the Bedroom value");
	return false;
  }
  if(document.aptmap.iMaxRentID1.value == "0")
  {
    alert("Please select the Monthly Rent value");
	return false;
  }
  document.aptmap.plotapt.value=1;
  return true;
}
