Hi,
This is the way i am doing
<bean

efine name="borrowerType" id="borrowerTypeList" scope="request"/>
<html:select property="borrowerType" onchange="JavaScript:getBorrowerCodes()" tabindex="1">
<html

ptions collection="borrowerTypeList" labelProperty="borrowerType"
property="borrowerType"/>
</html:select>
I have a list of data i set to request from the action class i am loading the
jsp page as
request.setAttribute("borrowerType",borrowerTypeList);
First i am defining an object for the collection using the bean

efine . There whatever be the id we are giving it should match with the collection attribute of option .
Try like this
Hope this will help you