function control_it() {	$.post('control.php', { champ: $("#champ").val() }, function(data){		$("#result").html(data);		if (data) {			$("#result").show();			$("#ici").fadeIn("slow");		} else {					$("#result").hide();			$("#ici").hide();		}			});}
