function getCityList(strInput)
{
	if(strInput.length == 0)
	{
		$('#cityBox').hide();
	}
	else
	{
		$.post("/gc/ajax/city.php", {city: ""+strInput+""}, function(data){
			if(data.length >0)
			{
				$('#cityBox').show();
				$('#cityList').html(data);
			}
		});
	}
}
	
function getCity(value)
{
	$('#city').val(value);
	
	setTimeout("$('#cityBox').hide();", 200);
}
