// JavaScript Document for Air Madagascar
var zTargetFile = 'index2.php?option=com_airmadpointsales' ;

function getValue ( xmlDoc, id ) {
	return $(xmlDoc).find('point[@id='+ id +']').text();
}

$( function () {
	// loading 
	
	showCoord = function (idTown) {
			$.ajax({
				type:'POST',
				url: zTargetFile,
				dataType: "json",
				data:{id : idTown},
				success: function(oResponse) {
					$('.adresses').html(oResponse);
				}
			});


	}
	
	$('#listeville').change( function () {
		if ($(this).val() != '' )
			showCoord ( $(this).val() );
	});
	
});