if (contactGroupsJComboBox.getSelectedIndex() == 0) {
editContactsJButton.setEnabled(false);
} else if (contactGroupsJComboBox.getSelectedIndex() == contactGroupsJComboBox.getItemCount() - 1) {
editContactsJButton.setEnabled(false);
contactGroupsJComboBox.setSelectedIndex(0);
new NewContactGroupDialog(this, true);
} else {
editContactsJButton.setEnabled(true);
}
validateInput();