Basically, you source will look like this:
<HTML>
<HEAD>
<TITLE>Title</TITLE>
<script language="JavaScript">
function showdiv() {
var dropValue = document.all.select1.value;
var strComment = eval("document.all.desc1"

if (dropValue == "Yes"

{
strComment.style.visibility = "visible";
strComment.style.position = "fixed";
} else {
strComment.style.visibility = "hidden";
strComment.style.position = "absolute";
}
}
</script>
</HEAD>
<BODY>
<p><select name="select1" onchange="return showdiv();">
<option selected value="No">No</option>
<option value="Yes">Yes</option></select>
</p>
<div id="desc1" style="VISIBILITY: hidden; POSITION: absolute;">
<p><input type="text" name="text1"><br>
<input type="text" name="text2">
</p>
</div>
</BODY>
</HTML>