You woulld use the same principle in creating a dropdown box for each name. Suppose you wanted to provide a field for t-shirt size with options samll, medium or large for each name. Here's how you'd do it
In your
JSP:
<select name="tShirtSize[0]" >
<option>small</option>
<option>medium</option>
<option>large</option>
</select>
<select name="tShirtSize[1]" >
<option>small</option>
<option>medium</option>
<option>large</option>
</select>
Then, in your ActionForm, code a setTShirtSize(int index, String size) method.
Just a note on style: This method, while it works, is not making very good use of object oriented design. A better design would be to have a Person object with properties for first name, last name, t-shirt size, etc. Then have an array or an ArrayList of Person objects in your ActionForm.
[ June 14, 2006: Message edited by: Merrill Higginson ]