<!--
var tempCity = "";

function submitForm1()
{
formIndex = 1;
locationIndex = getElementIndex(formIndex,"cityLocation");
cityLoc = document.forms[formIndex].elements[locationIndex].value;
if(cityLoc.indexOf(" (") >= 0)
document.forms[formIndex].elements[locationIndex].value = cityLoc.substring(0, cityLoc.indexOf(" ("));
if (document.forms[formIndex].city.selectedIndex == -1 && document.forms[formIndex].cityName.value != "")
{
alert("The city you selected ("+ document.forms[formIndex].cityName.value + ") is either misspelled or only available on the advanced search");
return;
}
document.forms[formIndex].submit();
}

