if i have the following
<html>
<select name="Choose number of levels">
<option value="1box">1box</option>
<option value="2box">2box</option>
<option value="3box">3box</option>
<option value="4box">4box</option>
<option value="5box">5box</option>
</select>
<input type="text" name="1" readonly ="true" size="6" >
<input type="text" name="2" readonly = "true" size="6" >
<input type="text" name="3" readonly = "true" size="6" >
<input type="text" name="4" readonly = "true" size="6" >
<input type="text" name="5" readonly = "true" size="6" >
</html>
to start with all of the text fields are readonly(or hidden) ... and what I would like the user to do allow the user to choose the number of rows to edit(or make visible)..
for example when the user selects "3box" from the drop down menu, the first 3 rows of text boxes become editable(or viewable) ... if the user chooses 4box, then the first 4 rows of text fields become editable(or viewable)..
your help is greatly appreciated.