/******************************************
	Location Materiel 
******************************************/
/** Affiche ou chache les magasins de location de materiel selon leur localisation **/
function AfficheCacheMagasinsSelonLocalisation()
{
			var ListeIdCommune = $('#LocalisationMagasin').val();
			if(ListeIdCommune=='*')
			{
				$('span[class^=CommuneMagasin]').removeClass("None");
				$('span[class^=CommuneMagasin]').addClass("NumberCount");
				$(".NbResultat").html( $('.NumberCount').length );
			}
			else
			{
				$('span[class^=CommuneMagasin]').addClass("None");
				$('span[class^=CommuneMagasin]').removeClass("NumberCount");
				
			    var tableauIdCommune=ListeIdCommune.split(",");
				for (var indice=0;indice<tableauIdCommune.length;indice++) 
				{
					$('.CommuneMagasin'+tableauIdCommune[indice]).removeClass("None");
					$('.CommuneMagasin'+tableauIdCommune[indice]).addClass("NumberCount");
				}
			}
			$(".NbResultat").html( $('.NumberCount').length );
}
