function affiche_promo(){

$(document).ready(function(){		
		$.ajax({
			type: "POST",
			url: '/proxy.php',
			data: {what: 'promoIndex'},
			success: function(msg){
				if(msg.length>0){
					$('#indexPromo').empty().append(msg);
					//else $('#indexPromo').empty().append(msg).selectOptions();
				}
			},
			error: function(msg){
				$("#indexPromo").attr("disabled","true");
			}
		});
	});	
}

