What kind of list IS it?
Are you using JSPs?
The easiest thing to do might be to create a <form method='POST'> with a hidden input element (<input type='hidden' name='mylist' value=''>).
Then, when you submit, go through the list and create a string of elements, separating them by asterisks so the final string might be something like:
hats*gloves*scarf*boots and umbrella*parka
When the form submits, the element will go with it.
If you're using a JSP at the far end, you can get the value via request.getParameter("mylist");
To do this when you submit the form, add on onsubmit attribute to the FORM tag which calls a function. The function will then cycle through the list. Much easier in the case of a drop down, but do-able, with some work, in the case of an ordered list.
--Dave
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
O Time, Strength, Cash, and Patience! ![[infinity] [infinity] [infinity]](/data/assets/smilies/infinity.gif)