in reply to Multiple selection value- Need a small perl script

You probably want to take a look at CGI. Example:

#!/usr/bin/perl -w use CGI qw/:standard/; use Data::Dumper; my $q = new CGI; print header, start_html(); print Dumper $q->param('sel'); print end_html;
--
b10m