
// GESTION DES GALLERIES - balises select / MAJ des tableaux de bord / ...
function codePostal(cp,type)
{
	new Ajax.Request('ajax.php',
	{
		method: 'post',
		parameters: 'cp='+cp+'&type='+type,
		onSuccess: function(ajax)
		{
			$(type + '_ville').replace(ajax.responseText);
		}
	});
}

function pays(paysVar,type)
{
	new Ajax.Request('ajax.php',
	{
		method: 'post',
		parameters: 'paysVar='+paysVar+'&type='+type,
		onSuccess: function(ajax)
		{
			$(type + '_cp').replace(ajax.responseText);
		}
	});
	
	new Ajax.Request('ajax.php',
	{
		method: 'post',
		parameters: 'paysVille='+paysVar+'&type='+type,
		onSuccess: function(ajax)
		{
			$(type + '_ville').replace(ajax.responseText);
		}
	});
}
