function Is_click_brochure(domaine)
	{
	bool_checked=0;
	for(i=1;i<=nbdomaines;i++)
		{
		if($("#Brochure_"+i).is(":checked"))
			{
			bool_checked++;
			}
		}
	
	if(bool_checked==1)
		{
		switch(domaine)
			{
			case "1":
			url_dest="brochures-commerce-marketing-32.html";
			break;
			
			case "2":
			url_dest="brochures-gestion-finance-32.html";
			break;
			
			case "3":
			url_dest="brochures-tourisme-32.html";
			break;
			
			case "4":
			url_dest="brochures-informatique-32.html";
			break;
			
			case "5":
			url_dest="brochures-sante-social-32.html";
			break;
			
			case "6":
			url_dest="brochures-arts-appliques-32.html";
			break;
			
			case "7":
			url_dest="brochures-alternance-32.html";
			break;
			}
		$("#demandeBrochure").attr("action",url_dest);
		}
	
	if($("#Brochure_"+domaine).is(":checked"))
		{
		$("#divVille_"+domaine).show();
		$.post("includes/formulaire_brochure/liste_ville.php",{idDomaine:domaine,provenance:'ajax'},function success(data)
			{
			$("#divVille_"+domaine).html(data);
			});
		}
	else
		{
		$("#divVille_"+domaine).hide();
		$("#divFormation_"+domaine).hide();
		}
	}
	
function Is_selected_brochure_ville(domaine)
	{
	ville = $("#villeBrochure_"+domaine).attr("value");
	if(ville!="")
		{
		$("#divFormation_"+domaine).show();
		$.post("includes/formulaire_brochure/liste_formation.php",{idDomaine:domaine,idVille:ville,provenance:'ajax'},function success(data)
			{
			$("#divFormation_"+domaine).html(data);
			});
		}
	else
		{
		$("#divFormation_"+domaine).hide();
		}
	}