Is there any smarter way for this code?

Is there any smarter way for this code?

Hello mates,
I was wondering if is there some better way to write the code below:

  1. $("#fuma_tempo").hide();
  2. $("#fuma_qnt").hide();

  3. $("#fuma_ex_tempo").hide();
  4. $("#fuma_ex_duracao").hide();


  5. $('#fuma').click(function(){
  6.    if(this.checked == true) {
  7.         $("#fuma_tempo").show();
  8.         $("#fuma_qnt").show();
  9.     } else {
  10.        $("#fuma_tempo").hide();
  11.        $("#fuma_qnt").hide();
  12.    }
  13. });

  14. $('#fuma_ex').click(function(){
  15.    if(this.checked == true) {
  16.         $("#fuma_ex_tempo").show();
  17.         $("#fuma_ex_duracao").show();
  18.     } else {
  19.        $("#fuma_ex_tempo").hide();
  20.        $("#fuma_ex_duracao").hide();
  21.    }
  22. });