May I recommend you use Swing instead of AWT? Derive your applet class from javax.swing.JApplet instead of java.applet.Applet.
Then you can use the (easier to use) Swing components.
The component you're looking for is JComboBox, with setEditable(false) called after construction.