$(document).ready(initStatistique);

function initStatistique(){
	$("#recupIdGroupe").change(changeIdGroupe);
}

function changeIdGroupe(){
	$("#statistiques").html = "Veuillez patienter...";
	$("#statistiques").load("statistique_resultat.php?recupIdGroupe="+this.value);
}
