Sounds GREAT!
I hope this works out for you! Here's where I'm at if this direction makes sense....

I am keeping the dropdown intact while calling 3 additional (optional) Bins. Pick from the dropdown like normal and choose the extra bins to include if wanted.
PHP Code:
<tr>
<td class="smallText" align="center"><?php echo HEADING_SEARCH_STATUS; ?></td>
<td class="smallText" align="center"><?php echo zen_draw_pull_down_menu('status', array_merge(array(array('id' => '', 'text' => TEXT_ALL_ORDERS)), $orders_statuses), $_GET['status'], ''); ?></td>
<td class="smallText" align="left">
<?php echo zen_draw_checkbox_field('status', '1', $orders_status_checked);?> OSR<br />
<?php echo zen_draw_checkbox_field('status', '1', $orders_status_checked);?> SO<br />
<?php echo zen_draw_checkbox_field('status', '1', $orders_status_checked);?> ORWP
</td>
</tr>
I'm stuck as to how to link the certain Bin IDs to the check boxes for form submission along with the dropdown selection.
Bookmarks