Index: /applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java
===================================================================
--- /applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java	(revision 26568)
+++ /applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java	(revision 26569)
@@ -3,5 +3,7 @@
 import java.awt.event.*;
 import java.awt.*;
+
 import javax.swing.*;
+
 import java.util.*;
 
@@ -13,4 +15,19 @@
 
 	private OSeaMAction dlg;
+	
+	public JLabel categoryLabel;
+
+	public JComboBox trafficCatBox;
+	private ActionListener alTrafficCatBox = new ActionListener() {
+		public void actionPerformed(java.awt.event.ActionEvent e) {
+		}
+	};
+
+	public JComboBox warningCatBox;
+	private ActionListener alWarningCatBox = new ActionListener() {
+		public void actionPerformed(java.awt.event.ActionEvent e) {
+		}
+	};
+
 	private ButtonGroup objButtons = new ButtonGroup();
 	public JRadioButton houseButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/LighthouseButton.png")));
@@ -45,4 +62,21 @@
 		this.add(getObjButton(trafficButton, 50, 35, 34, 32, "SSTraffic", Obj.SISTAT), null);
 		this.add(getObjButton(warningButton, 90, 35, 34, 32, "SSWarning", Obj.SISTAW), null);
+
+		categoryLabel = new JLabel(Messages.getString("Category"), SwingConstants.CENTER);
+		categoryLabel.setBounds(new Rectangle(20, 80, 140, 20));
+		this.add(categoryLabel, null);
+		
+		trafficCatBox = new JComboBox();
+		trafficCatBox.setBounds(new Rectangle(20, 110, 140, 20));
+		this.add(trafficCatBox, null);
+		trafficCatBox.addActionListener(alTrafficCatBox);
+		trafficCatBox.addItem(Messages.getString("NoneSpecified"));
+
+		warningCatBox = new JComboBox();
+		warningCatBox.setBounds(new Rectangle(20, 110, 140, 20));
+//		this.add(warningCatBox, null);
+		warningCatBox.addActionListener(alWarningCatBox);
+		warningCatBox.addItem(Messages.getString("NoneSpecified"));
+
 	}
 
