If the combo box contains the key field, then it is easy.
In the AfterUpdate event of the combo, build a SQL string e.g.
strSQL = "SELECT * FROM TABLE WHERE KEYFIELD = " & Combo.Column(0)
Then change the recordsource of the form to be the SQL string (Me.Recordsource = strSQL). You can do this...