function getSelected(select)
{
	var retour = null;
	$(select).children().each(function(){
		if($(this).attr("selected") ) 
		{
			retour = $(this).attr("value");
		}
	});
	return retour;
}

$(document).ready(function(){
	var loc = new Localisation();
	$("input.postalcode").keyup(function(){
		var postalcode = $(this).val();
		var country = getSelected("select.country");
		loc.ListLocalityOption("select.locality",country,postalcode,'FR');
	});
	$('input.date').datepicker({dateFormat:'yy-mm-dd'});
});