<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> New Document </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> </head> <body>
<script language="JavaScript"> <!-- function checkselect(objname){ o = document.getElementById(objname); t = document.getElementById("output"); var count=0; var intvalue=""; for(i=0;i<o.length;i++){ if(o.options[i].selected){ intvalue+=o.options[i].value+","; count++; } } t.value=intvalue.substr(0,intvalue.length-1); alert(count);