I can't think of a simple or easy way, but here's one way to do it:
1-Use the Struts-el version of the <html:xxx> tags. You do this by including struts-el.jar in your WEB-INF/lib directory and referencing the html-el Tag library in your
JSP.
2-Put the message in an EL variable like this:
<c:set var="option1"><bean:message key="mymessage.key"/></c:set>
3-Use the EL variable in your <html:option> tag like this:
<html:option key="mymessage.key" value="${option1}" />
[ June 29, 2006: Message edited by: Merrill Higginson ]