//validLocatorMain.js
//                    validate dynamic properties for ESC Locator

function validateFields(){
	
	with (document.frmMain) {
		if (typeof(drpOffice) == "object" && typeof(drpCounty) == "object") {
			if (drpOffice.options[drpOffice.selectedIndex].value == "0" && drpCounty.options[drpCounty.selectedIndex].value == "0" ) {
				alert ("Please select a local office from either the City or County list.");
				return false;
			}
		}
	}
	return true;
}