Эй, у меня есть сегмент кода здесь:
<div class="label"><%= f.label :course %> <span>(Does this relate to a specific course?)</span></div>
<%= check_box_tag(:no_course) %>
<%= label_tag(:no_course, "None") %><br />
<%= f.collection_select(:course_id, @current_account.courses.find(:all, :order => "name"), :id, :name) %>
Как я мог сделать так, чтобы
<%= f.collection_select(:course_id, @current_account.courses.find(:all, :order => "name"), :id, :name) %>
показывает только когда
<%= check_box_tag(:no_course) %>
Выбран с использованием JavaScript?
Спасибо!