(function($){
  $(document).ready(function(){
    $('.hours_box .inner_column_02:gt(0)').hide();
    $('#select_hours').change(function(){
      $('.hours_box .inner_column_02:visible').hide();
      $('#'+$(this).val()).show();
    });
  });
})(jQuery);
