Really hard to make an intelligent reply without seeing your HTML or knowing if you can change the HTML.
Your code implies an over-reliance on IDs. I would give the elements you want and hide/show together a common CSS class, and select on class rather than ID.
Given only the above, without knowing the HTML, you can save some lines of code:
- $("#fuma_tempo,#fuma_qnt").hide();
Etc.