
function loadCityList(theValue) {
	if(theValue.length<2) return;
	else {
		skipLoadLayer = true;
		$.get('/ajax/loadCityList.php?cityname='+theValue, function(data) {
			 	eval(data);
			});
		
	}
	
}

function selectCity(val) {
	document.getElementById('sf_citystate').value=val;
	$('#sf_citystates').hide();
	filterAddress();
}


function filterAddress() {} //dummy, will be overwritten

