Scott,
I tried that before posting but that didn’t work. I was able to make it work with a little more work. Here is what I did.
<html:select property=”homeContext”>
<html:option value=””><bean:message key=”home.context” /></html:option>
<logic:iterate name=”supplierlst” id=”supplier” scope=”request”>
<bean:define id=”supplierValue” ><bean:write property=”best” name=”supplier”/></bean:define>
<html:option value=”<%=supplierValue%>“><bean:write property=”supplierName” name=”supplier”/>(<bean:write property=”best” name=”supplier”/>)</html:option>
</logic:iterate>
</html:select>
But thanks for the ideas.