function validateSearchForm(theform) {
	if (theform['city'].value == "") {
		alert("Please select a city");
		return false;
	}
	return true;
}