I know it is propably not the best practice to make this work without a managed bean... but I'd like to make it work that way :)
<h:selectOneMenu id="SelectMenu}">
<f:selectItem itemValue="1" itemLabel="A"/>
<f:selectItem itemValue="2" itemLabel="B"/>
<f:selectItem itemValue="3" itemLabel="C"/>
</h:selectOneMenu>
<h:commandLink value="click" action='#{someController.action(SelectMenu.itemValue)}' />
I guess ajax could be helpfull, but I never used that.
Many thanks for your help