function validateSearch()
{
	alert (document.getElementById('SearchLocationMethod').value);
 zip = document.getElementById('Zip').value;
 if (zip == "" || isNaN(zip) || zip.length != 5)
 {
 	alert("Please enter valid zip code");
	document.getElementById('Zip').focus();
	return false;
  }
}