resetting a DropDown option

Hi.
I have Two dropDown boxes, where selecting an option in the First populates the second.
However when I Select a new option in the First dropdown the second does not reset itself… I get the value that was selected previously.
Is there any way to “reset” a dropdown?

regards
John Arne

create a action listener on the primary select and have it reset the secondary select from that action listener and then create control accessor on secondary select and then upon the onchange action listener then call the secondary select accessor with .clear(); option in the java code…

or you could do it solely on the front end through onchange javascript listener and just do a CAF.model(“#{activePageBean.clientIds[‘secondaryselectmenuname’]}”)…setValue(“”);