You should use check_box_tag instead of f.check_box.
check_box_tag "page[group_ids][]", g.id
The difference is f.check_box is for model-bounded forms and the value supplied to the check box is implicit from the given model and doesn't need to be provided.