function addoption(selectobj,optname,optvalue)
{
	selectobj.options[selectobj.options.length]=new Option(optname,optvalue);
}
