$(document).ready(
	function() {
	if($("#contact_type").val() != 1) {$("#societe").hide();}
	$("#contact_type").change( function() { 
	if($("#contact_type").val() != 1) {
		$("#societe").hide();
		
	}
	else {
		$("#societe").show();
		
	}

	} );
	}
);
