Darla,
Include those 2 fields in your combo box (ex. a three column combo box)
Using the AfterUpdate event of the combobox use this sample code to
examine the values stored in column two and three of the combo, and update
your fields (ex. Field2 and Field3) accordingly.
Field2 = cboYourComboName.Coulmn(1)
Field3 = cboYourComboName.Column(2)
(combo box columns are numbered 0, 1, 2, 3, etc... so the second column
..Column(1), and the third column is .Column(2))
hth
Al Camp