<!--
function getCities(postalCode,destination)
{
	var json;
	

	if (postalCode.length == 5 && !isNaN(postalCode))
	{
		new Ajax.Request('./ajax/getCities.php', {
			method: 'get',
			parameters: {postalCode: postalCode},
			onSuccess: function(oXHR)
			{
  				var json = oXHR.responseText.evalJSON();

  				if (json.successfull && json.cities.size() > 0)
  				{
  					//Vider les options de la balise select
					$(destination).options.length = 0;  				  				
 					json.cities.each(function(s, idx) {
						$(destination).options[idx] = new Option(s, s);
					});
					$(destination).selectedIndex = 0;
				}
				else
				{
					$(destination).options.length = 0;
				}
  			}
		});
	}
	else
	{
		$(destination).options.length = 0;  
	}
}
// -->

