jQuery(function(){
				jQuery('#Form_InfoserviceForm_Commission_scolaire').bind('change', '', function(){

                    var id = jQuery('#Form_InfoserviceForm_Commission_scolaire').val()

                    jQuery.ajax({
                        url: location.href + '/getEcole?commissionID='+id,
                        success: function(data) {
                            //alert(data)
                            jQuery('#Form_InfoserviceForm_Etablissement').html(data)
                        }
                    });
                })
			});


//jQuery('#Form_InfoserviceForm_Commission_scolaire').bind('change', '', function(){
//    alert('something');
//
//    var id = jQuery('#Form_InfoserviceForm_Commission_scolaire').val()
//    alert(id);
//    jQuery.ajax({
//        url: location.href + '/getEcole?commissionID='+id,
//        success: function(data) {
//            alert(data);
//            jQuery('#Form_InfoserviceForm_Etablissement').html(data)
//        }
//    });
//})

