<script type="text/javascript">
jQuery( function() {

	jQuery(function() {
		$("#datepicker").datepicker({minDate: 0});
	});

        // Remplir la ville d'arrivée suivant la ville de depart
        //
        $("#depart_id").change( function() {

            $('#prix').html('');

            if( $(this).val() == 0 ) {

                $('#arrivee_id').attr('disabled', true);
                $('#arrivee_id').html( '<option value="0"><?php echo ARR_RESAS; ?><\/option>' );

            } else {
                $('#arrivee_id').attr('disabled', false);


                $.ajax({
                    type: "GET",
                    url: "ajaxSearchArrivee.php",
                    data: "depart_id=" + $(this).val(),
                    success: function(msg){
                        //alert(  msg );
                        $("#arrivee_id").html('<option value="0"><?php echo ARR_RESAS; ?><\/option>' + msg );
                    }
                });

            }
        });
});
</script>