﻿// JScript File
function  validateCity() 
{
    var txtCity = document.getElementById(city);

	if (txtCity.options[txtCity.selectedIndex].text == "-- SELECT CITY --")	
	{
		alert("Please select city.\n");
		return false;
	}
	else
		return true;
}

