private JPanel createOtherOptionPanel() {
    final JPanel otherOptions = new JPanel(new GridLayout(2, 2));
    final TitledBorder otherOptionBorder = new TitledBorder("Others options");
    otherOptionBorder.setTitleColor(Color.WHITE);
    otherOptions.setBorder(otherOptionBorder);
    otherOptions.add(_reverseYawCheckBox);
    otherOptions.add(_batteriMonitorCheckBox);
    otherOptions.add(_gpsCheckBox);
    final JLabel tempLabel = new JLabel();
    tempLabel.setOpaque(true);
    tempLabel.setBackground(_reverseYawCheckBox.getBackground());
    otherOptions.add(tempLabel);

    return otherOptions;
  }