$(function() {
	checkCountry();
	});

function checkCountry() {
	if($('#country').val() == "United States") {
		$('#fld-state').fadeIn();
		$('#state').attr("disabled",false);
		}
	else {
		$('#fld-state').fadeOut();
		$('#state').attr("disabled",true);
		}	
	}
	
var RecaptchaOptions = {
theme: 'white'
};	