  function validate(){
    
	if(isEmpty(document.form1.frm_district.value)){
	  alert("Please Select A District");
	  document.form1.frm_district.focus();
	  return false;
	}
	if(isEmpty(document.form1.frm_property_type.value)){
	  alert("Please Select A Property Type");
	  document.form1.frm_property_type.focus();
	  return false;
	}
	
	if( (document.form1.frm_radio1[0].checked == false) && (document.form1.frm_radio1[1].checked== false))
				  {
				  alert("Confirm Status");
				  return false;
				  }
	return true;
  }
