<!--

	// make sure that field values are set to blank if they are left with default values
	function checkStoreLocatorForm(f) {
	
		// check to see if anything has been entered
		if ( (f.city.value == 'ENTER CITY') && (f.postalcode.value == 'ENTER ZIP CODE') && (f.state.value == '') && (f.country.value == '') ) {
			alert("Please enter your city and state or zip code.")
			return false
		} 
		
		// if a city was entered, check to make sure that a state was selected
		if ( ( (f.city.value != '') && (f.city.value != 'ENTER CITY') ) && (f.state.value == '') ) {
			alert("Please select a state/province")
			f.state.focus()
			return false
			// next:  if a state was selected, check to make sure that a city was also entered
		} else if ( (f.state.value.length == 2) && ( (f.city.value == '') || (f.city.value == 'ENTER CITY') ) ) {
			alert("Please enter a city")
			f.city.focus()
			return false
		}
		
		// if it appears that valid data has been entered, clear the default city/postal code values if they still exist			
		if (f.city.value == 'ENTER CITY') { 
			f.city.value = ''
		}
		
		if (f.postalcode.value == 'ENTER ZIP CODE') { 
			f.postalcode.value = '' 
		}
		
		return true
		
	}

-->