/* select_city functions */

function SelCity(selField) {
	var w = selField.options[selField.selectedIndex].value;

	if ( w == "NULL" ) {
		alert("Please select the city you wish to visit.");
		return false;
	}

	return true;
}