add a default value to hidden field

<%= start_form_tag :action => 'create' %>   <p><label for="worklog_worklogentry">Worklogentry</label><br/> <%= text_field 'worklog', 'worklogentry' %></p>

<%= hidden_field 'worklog', 'stocksymbol_id',:value='5' %>

I am trying to add a default value 5 to the hidden field named stocksymbol_id for the class worklog. somehow it is giving me error and i am stuck on this for whole of today. Pl let me know where i am erroring

Regards

Seede

There is a typo here. It should be :value => ‘5’ instead of :value=‘5’