You can use the style sheet property display, and then make a java script function to toggle this property between none and block.
I have made this small example for you. Paste all code to a page and view the page.
Code:
<HTML>
<HEAD>
<SCRIPT language=JavaScript>
function toggle(theID)
{
var field01;
field01 = document.getElementById(theID);
if(field01 != null)
field01.style.display = (field01.style.display == "block")? "none" : "block";
}
</SCRIPT>
</HEAD>
<BODY>
<FORM>
<CENTER>
<TABLE BORDER='0' CELLSPACING='4'>
<TR ID='tobehidden' STYLE='display:block;'>
<TD CLASS='label'>your name</TD>
<TD CLASS='control'><INPUT type='text'></TD>
</TR>
<TR>
<TD CLASS='label'>
<select CLASS='drop' onchange="toggle('tobehidden'); return false;" >
<option>option 01</option>
<option>option 02</option>
</select>
</TD>
<TD CLASS='control'><INPUT TYPE='button' value='next' onclick="toggle('tobehidden'); return false;"></TD>
</TR>
</TABLE>
</CENTER>
</FORM>
</BODY>
</HTML>
This will give you an idea how to do it! Do not mind the CLASS attributes. I didn't include the style sheet.
Hope it helps!
Jacob.