$(function() {
      $('#reserveDateStart').datepicker({
            dateFormat: 'yy/mm/dd',
            changeMonth: true,
            changeYear: true,
            yearRange: '2010:2023',
            showMonthAfterYear: true
      });
      $('#reserveDateEnd').datepicker({
          dateFormat: 'yy/mm/dd',
          changeMonth: true,
          changeYear: true,
          yearRange: '2010:2023',
          showMonthAfterYear: true
      });
      $("#zipCd").mask("999-9999",{placeholder:" "});
      $("#reserveDateStart").mask("9999/99/99",{placeholder:" "});        
      $("#reserveDateEnd").mask("9999/99/99",{placeholder:" "});

      $('#adultMan').autotab_magic().autotab_filter('numeric');
      $('#adultWoman').autotab_magic().autotab_filter('numeric');
      $('#child1').autotab_magic().autotab_filter('numeric');
      $('#child2').autotab_magic().autotab_filter('numeric');
      $('#child3').autotab_magic().autotab_filter('numeric');
      $('#child4').autotab_magic().autotab_filter('numeric');
      $('#child5').autotab_magic().autotab_filter('numeric');
});  

