 /*
  * 
  * This on ready function should be placed on pages which contain Contact information forms.
  * Upon modification of the Country select box, providence, state, or free form country entry will appear
  */
 $(document).ready(function() {
		$("select#con_country").change(function () {
			$("select#con_country option:selected").each(function () {
				//$("#otherLayer").css("display", "none");
				//$("#stateLayer").css("display", "none");
				//$("#caLayer").css("display", "none");
				$("#otherLayer").hide();
				$("#stateLayer").hide();
				$("#caLayer").hide();

				if ($(this).val() == "OTHER") {
					$("#otherLayer").show();
				} else if ($(this).val() == "US") {
					$("#stateLayer").show();
				} else if ($(this).val() == "CA") {
					
					$("#caLayer").show();
				}
			});
		})
		.change();
	});
