your code should be only this in the combo125_Afterupdate event
if you want to add additional states you can use the or clause like:
if you want to add additional states you can use the or clause like:
Code:
Private Sub Combo125_AfterUpdate()
If Combo125 = "CA" or combo125 = "GA" Then
[Combo83].Visible = True
(for more combo's ) combo123.visible = true and so on...
Else
[Combo83].Visible = False
End If
End Sub