private void setupComboMarcas()
 {
     this.comboMarca.ValueMember   = "id";
     this.comboMarca.DisplayMember = "description";
     this.comboMarca.DataSource    = dao.getAllBrands();
     this.comboMarca.SelectedItem  = null;
 }