$(function () {
    //默认隐藏
   $("#SelTime").hide();
  $("#SeniorSel").toggle(
       function () {
         $("#SelTime").show();
       },
      function () {
        $("#SelTime").hide();
      }
  );
});
原文:http://www.cnblogs.com/weimingxin/p/7135842.html