if (instrumentJComboBox.getSelectedIndex() == 0) {
editInstrumentJButton.setEnabled(false);
} else if (instrumentJComboBox.getSelectedIndex() == instrumentJComboBox.getItemCount() - 1) {
editInstrumentJButton.setEnabled(false);
instrumentJComboBox.setSelectedIndex(0);
new NewInstrumentDialog(this, true);
} else {
editInstrumentJButton.setEnabled(true);
}
validateInput();