$(function() {
	
	$("#edit-province").change(function() {
		if($(this).val() == "Other") {
			$("#other").slideDown("slow");		
		} 
		else {
			$("#other").hide();
		}
	});
	
});
