function getStateList(strInput)
{
	if(strInput.length == 0)
	{
		$('#stateBox').hide();
	}
	else
	{
		$.post("/gc/ajax/state.php", {state: ""+strInput+""}, function(data){
			if(data.length >0)
			{
				$('#stateBox').show();
				$('#stateList').html(data);
			}
		});
	}
}
	
function getState(value)
{
	$('#state').val(value);
	
	setTimeout("$('#stateBox').hide();", 200);
}
