# Generate a popup menu
print $query->h1('Choose from the following menu');
print $query->popup_menu({-name=>'PopupOne',
-values=>['First Choice', 'Second Choice',
'Third Choice', 'Fourth Choice',
'Fifth Choice'],
-defaults=>'Fifth Choice'});
# Extract out whatever the contents of our popup area were.
my $textInput = $query->param(-name=>'PopupOne');
print $query->hr();
print $query->p('The popup selected was:'), $query->br();
print $query->em({-align=>'center'}, $textInput);
print $query->hr();