tried to create simple dropdown in ruby – like that :
<%= select_tag(:origin_id, '<option value="1">Lisbon</option>') %>
and I received an empy one.
this is the generated html
<select id="origin_id" name="origin_id"><option alue="1">Lisbon</option>/select>
Mark your HTML as safe to avoid Rails to escape it.