
function pack(pack){ 
	$.ajax({ 
		type: "GET", 
		url: "config/pack.php?pack="+pack, 
		success: function(retour){ 
			$("#recipient").empty().append(retour);

		} 
	});
}