How to avoid an attribute without passing it to post in formtastic

I am developing rails application. I have a check box in the form like:

<%= b.check_box :chkbx, label: false, checked: false %>

While submitting the form. I need to avoid passing checkbox name
argument in the post.

How to avoid checkbox attribute from passing it to post in formtastic?