Here is a piece of code I\'m using now:
<%= f.select :project_id, @project_select %>
How to modify it to make its default value equal
This should do it:
<%= f.select :project_id, @project_select, :selected => params[:pid] %>