Create Select Box form
<%= form.collection_select :city_id, City.order(:name), :id, :name %>
creatse from hash number or tableCreate Radio Buttons from ahs h
<%= form.collection_radio_buttons :city_id, City.order(:name), :id, :name %>
Check box from hash table
<%= form.collection_check_boxes :interest_ids, Interest.order(:name), :id, :name %>