# Generate a scrolling list
print $query->h1('Choose from the following list');
print $query->scrolling_list({-name=>'ScrolllistOne',
-values=>['First Choice', 'Second Choice',
'Third Choice', 'Fourth Choice',
'Fifth Choice'],
-multiple=>'true',
-defaults=>'Fifth Choice'});
# Extract out whatever the scrolling list was
my @textInput = $query->param(-name=>'ScrolllistOne');
print $query->hr();
print $query->p('The scrolling list selects were:'), $query->br();
print $query->em({-align=>'center'}, @textInput);
print $query->hr();