Month selectedMonth = (Month)this.cboMonth.getSelectedItem();
this.cboMonth.removeActionListener(this);
DefaultComboBoxModel cboMonthModel = (DefaultComboBoxModel)this.cboMonth.getModel();
cboMonthModel.removeAllElements();
if(this.cboYear.getSelectedItem() != null){
int selectedYear = (Integer)cboYear.getSelectedItem();
int minimumYear = this.lowerBound.getYear();