= form.input :category_id, as: :select, collection: Category.all.map{|x| [
x.name,
x.id]}, input_html: {:style => "width:300px"}, :include_blank => true
= form.input :sub_category_id, as: :select, collection: @package.category.sub_categories.map{|x| [
x.name,
x.id]}, input_html: {:style => "width:300px"}, :include_blank => false