jQuery(function($) {

  $('input[type=text]').bind('focus', function() {
    $(this).select();
  });

  $('#reservation_arrival').datepicker({ dateFormat: 'yy-mm-dd' });


});

