Here is a method...In the click event of your combo box enter something like:
DoCmd.OpenReport "rpt_reportname", acPreview, , _
"[fld_department]=[Forms]![frm_frmname]![cbo_comboboxname]"
This will match the fld_department from your data source to the bound column in your combo box.