// JavaScript Document
function clearText(thefield){
	if (thefield.defaultValue=="Zip or City & State")
		thefield.value = "";
}
function resetText(thefield){
	if (thefield.value =='')
		thefield.value = thefield.defaultValue;
}
function findlocations()
{
  document.locationForm.submit();
}

