function verifyForm() {
if(document.form.code.value=="SS") {
alert("You must select a city from the list.");
return false;
}
return true;
} 
