$(document).ready(function(){
	// Coordonnées d'un service après choix dans un select
	$('#services_list').change(function(){
		$.ajax({
			type:       'GET',
			url:        $(this).val(),
			dataType:   'html',
			success:    function(data){ $('#services_infos').html(data);   },
			beforeSend: function()    { $('#services_infos').hide('fast'); },
			complete:   function()    { $('#services_infos').show('fast'); }
		});
	});
});