Add an Else to the if statement within the Combobox_Change event like so:

Private Sub ComboBox1_Change()
    If Me.ComboBox1.Value <> "" Then
        Me.TextBox1.Enabled = True
    Else
        Me.TextBox1.Enabled = False
    End If
End Sub