Patti,
Starting with these assumptions:
1- You want to add a combo box that will show all the zip codes for a state that the user has selected.
2- The databse contains a table with zip codes and states.
This really should be separate from the state lookup table.
3- The states are listed in a combo box on the lookup form.
The user can select the state from the drop down box.
This combo box is named combo1. The form is named StateLookup.
Using query designer, create a query that selects State and Zipcode from the zipcode table. On the criteria line under State add
forms!StateLookup!combo1. Save the query as qListZipByState.
Add another combo box. Let's call it combo2. The record source for this combo box will be the query, qListZipByState.
Add an Event Procedure to combo1 in the After Update event. Events are found in the combo box properties under the Events tab. The Event Procedure should be a subroutine in VB code. The sub routine your create should look like the following.
Private Sub Combo1_AfterUpdate()
Combo2 = ""
Combo2.Requery
End Sub
This code will cause the new combo box to requery the table using the newly selected state.
I've left out a lot of detail. If you are not familiar with Access forms, VB code, event procedures and/or queries, I recommend reading about them in Access help so you can understand what I've just said. Terry