I've added an extra field to my new form:
<%= select_tag :quantity, options_for_select(["Select a Value"].concat((1..10).to_a)) %>
It specifies the number of copies of the record to be created.
How can I validate the presence (or numericality) of that field, as it's not part of the model itself?
validates_presence_of :quantity
fails!!!