Try folloing code
In
Jsp <f:selectItems value="#{myBean.listitem}"/>
In bean create getter method
getListitem() whose return Type shold be SelectItem[]
in method you can create SelectItem[] whose syntax is as follows
SelectItem[] listitem = new SelectItem[size];
listitem[i] = new SelectItem(storedColumnValue,displayColumnValue);
Hope this will help you