Just a question,DO I HAVE TO HAVE A <html:form> tags
It's usually a good idea.
You MIGHT be able to get around it by:
1) Use regular html form tags <form action="context/myAction.do"> (This assumes you want to actually SUBMIT your form. You might be able to leave this out if your drop-down box was for display purposes only.)
2) define the name attribute in the html:select tag to point to a bean with the corresponding property, otherwise it will look for one in the html:form as the default... which does not exist
Warning: Do not try this at home! I accept no responsibility for any ulcers developed in the process of following the above procedure.