jQuery(function(){
	if (cwAllowInternational){
		jQuery('#congressweb :input[name=Country]').change(function(){
			checkCountry(jQuery(this).val());
		}).change();
	}
});

function checkCountry(country){
	if(country == 'US'){
		jQuery('#USState').show().removeAttr('disabled');
		jQuery('#IntlState').hide().attr('disabled', true);
	}
	else {
		jQuery('#USState').hide().attr('disabled', true);
		jQuery('#IntlState').show().removeAttr('disabled');
	}
}
