// JavaScript Document
function doSelect(obj)
{
 for (i = 0; i < obj.length; i++)
    if (obj[i].selected == true)
       eval(obj[i].value);
} 
