Do a search on 'Not in List'.
However, you may have to foresee further checking in your NotInList Event in the case of cascading combos since you probably want to avoid situations like the following one:
User selects the value: '1' in Combo1
Combo2 is based on the table:
CriteriaField___ValueField
1____________a
1____________b
1____________c
1____________d
2____________e
2____________f
User wants to enter "e" in combo 2, that is not in the subset list displayed by combo2 (which is a,b,c,d, when 1 is selected in Combo1)
The NotInList event is triggered but you do not want to let the user register "e" as a new item in the underlying table since it does exist already, but is associated to value 2. You would rather have the user choose value 2 in combo1....
You may want to check for such situation to display a wanrning message and abort the NotInList event.