Ok
Her it is if you are based off a table bound to an Id field Use this
You can use the after update or the Change event what ever you want.
Private Sub Problem_Change()
If Me.YourCombobox.Value = The Id Number for Other Then
Me.SubForm.Visible = True
Else
Me.SubForm.Visible = False
End If...