Thanks for your 'question'.
NOTE: The option item is the only item in my form.
I am submitting to an XML file. To put it another way, when my form is submitted, it gets data from an XML file. The value selected in the OPTION is the criteria.
I get the data in the XML file with a scriptlet, then I use
<%= BbanbOpValueBean.getSpeed() %> for displaying each returned value
Here is the code for getting the data:
<%
Utils utils = new Utils();
String OptionSelected = request.getParameter("Options");
String otherCompsOptionSelected = request.getParameter("otherCompsOptions");
if (OptionSelected == null || OptionSelected.length() < 1){OptionSelected = "Broadband Option 1";}
if (otherCompsOptionSelected == null || otherCompsOptionSelected.length() < 1){otherCompsOptionSelected = "AOL Silver";}
BroadbandOptionBean BbanbOpValueBean = utils.getOptionValues( OptionSelected );
BroadbandOptionBean otherCompsOpValueBean = utils.getOptionValues( otherCompsOptionSelected );
%>
Thanks for your help.