// v1.0 20000217 J. Ashear
function populateTypes() {
}


function populateSvc() {
}

function doStateChange(frm) {
	myState = frm.states.options[frm.state.selectedIndex].value;

	if (myState.length > 0) {
		populateTypes();
		populateSvc();
	}
}

function init() {
	doStateChange();
}

function verifyServiceForm() {
	theForm = document.serviceForm;
	
	serviceType = theForm.serviceType.options[theForm.serviceType.selectedIndex].value;

	// city or county entered, but no state chosen
	if (serviceType == '') {
		alert('Please choose a Transplant Type then try your search again.');
		
		theForm.serviceType.focus();
		
		return false;
	} else {
		
		return true;
	}
}

