function getCountryStates(countryid) {
		
	$("#stateListBox").load("ajax_handlers/DealersCountryStates.cfm?countryid="+countryid)
}

function getStateCities(countryid, stateName) {
	$("#cityListBox").load("ajax_handlers/DealersStateCities.cfm?countryid="+countryid+"&stateName="+stateName)
}