My form currently have two fields, dropdown list and an input field. This is my code for form:
<div class="offset3 span6">
... # other code not relevant
<div id="topic_questions">
<%= f.simple_fields_for :topic_questions do |tq| %>
<%= tq.link_to_remove "Remove below topic" %> <br><br>
<%= tq.association :topic, collection: @topics, prompt: "Choose a topic", label: false %>
<%= tq.input :number_question, label: 'Number of questions' %>
<% end %>
<p><%= f.link_to_add "Add a topic", :topic_questions %></p>
</div> #topic_questions
</div>
This is how form look like:

But I want field input has label Number of questions will be next to dropdownlist Choose a topic. How can I do that?
