Hi everybody.... I have two lists (drop-down list),selectCountry and selectState, depending on the option the user selects in selectCountry I need the app load the options in selectState (all state of this country). I've already load the information of country using logic:iterate
<html:select property="selectCountry">
  <logic:iterate id="Country" name="Countries">
     <option><bean:write name="Country"/></option>
  </logic:iterate>
</html:select>
I load the information from a data base, and the state information is on a data base too...
So, my questions is how can I do this using Struts?? Any suggestions?
Has Struts any way to do this ?? any Tag ??

I'm using struts 1.1

thanks in advance...
Alejandro