I created an input page with a textbox in every field, and it's working.
I changed one field in the select box with the following code:
<div class="field">
<%= f.label :position %><br />
<%= select_tag "position", options_for_select(%w{ mainpost bannerpost2 minipost1 minipost2 minipost3 }) %>
</div>
When I edit my new post, I change the select_tag value into bannerpost2, and then I update my post, but the field of position doesn't change into bannerpost2.
Also, when I edit my post, the f.select doesn't change automatically into it's value.