Description
Currently Select requires its OptionList to be populated before the onProcess event. The Select methods bindRequestValue() and validate() depends on the OptionList.
It would be advantageous if the OptionList would be populated as late as possible, in case of redirects, forwards etc.
bindRequestValue() has no need for this dependency and can be easily removed.
validate() is trickier because it checks that the first OptionList value is not equal to the selected value. We can remove this restriction by exposing an API to explicitly set the value to validate against.