// JavaScript Document

$(document).ready(function() {

	$("#country").change(function() {
		if ($(this).val() != "United States" && $(this).val() != "Canada")
			$("#state").attr("disabled", "true");
		else
			$("#state").removeAttr("disabled");
	});
													 
});
