CheckBox chckbxdesc = new CheckBox();
ChoiceBox<String> cbbar = new ChoiceBox<String>(
FXCollections.observableArrayList("---", "yes", "no"));
cbbar.setValue("---");
Button sbtn = new Button("Search");
sbtn.setOnAction(new SearchRoomEventHandler(connect, results, tfpcount,
tfcost, chckbxdesc, cbbar));
this.add(lrooms, 0, 1);
this.add(lpcount, 0, 2);
this.add(tfpcount, 1, 2);
this.add(lcost, 0, 3);