Standard example:
@models = Model.all
select_tag "models", options_from_collection_for_select(@models, "id", "name"), {}
This will generate the following HTML:
David
The last argument are options, which accepts the following:
{
multiple: false,
disabled: false,
...