// JavaScript Document
$(document).ready(function(){
	$(function(){
		var $country = country;
		var $state = state;
		switch($country) {
		case "US":
			$("#state").val($state);
			$("#country").val("USA");
			$('#stateField').hide();
			$('#countryField').hide();
			break;
		case "CA":
			$("#state").val($state);
			$("#country").val("Canada");	
			$('#stateField').hide();
			$('#countryField').hide();
			break;
		default:
			$("#country").val($country);
			$("#state").val("");
			//$('#state').attr("disabled", true); 
			//$('#stateField').hide();
			//$('#countryField').hide();
		}
	});
});
