You could create your own. Create a form with the Detail section only. The have just a combobox on it with some label like "Please select". Size your form to whatever size you want and then set the following properties:
Scroll Bars = Neither
Record Selectors = No
Navigation Buttons = No
Dividing Lines = No
Border Style = Thin
Then put on the AfterUpdate event of the combobox,
DoCmd.OpenQuery "Query Name"
And on the criteria line of your query, again put
Forms![YourFormName]![ComboboxName]
For this to work, the little form must stay open. But you can hide it, or close it when the query closes.