function validateme() {
		 var f = document.getElementById("mls");
		 var oLoc = f.mlsPostcodeSuburbOriginal;
		 var oType = f.mlsProfessionalsSelected;
		 var sErr = "";
		 if ((oLoc.value == "") || (oLoc.value == "Enter Postcode or Suburb")) {
		 		 sErr = "Please enter the location to search\n\n"
		 }
		 var ynTypeOK = false;
		 for (i=1;i<oType.length;i++) {
		 		 if (oType[i].selected == true) {
		 		 		 ynTypeOK = true;
		 		 }
		 }
		 if (ynTypeOK == false) {
		 		 sErr += "Please select at least one from the list of health professionals\n\n"
		 }
		 if (sErr == "") {
		 		 f.submit();
		 } else {
		 		 alert(sErr);
		 }
}
function cleardefaulttext () {
		 var f = document.getElementById("mls");
		 var oLoc = f.mlsPostcodeSuburbOriginal;
		 if  (oLoc.value == "Enter Postcode or Suburb") {
		 		 oLoc.value = ""
		 }
}
