function removeAllOptions(selectbox)
{
	var i;
	for(i=selectbox.options.length-1;i>=0;i--)
	{
		//selectbox.options.remove(i);
		selectbox.remove(i);
	}
}

function addOption(selectbox, value, text, selval)
{
	var opt = document.createElement("OPTION");
	opt.text = text;
	opt.value = value;

	selectbox.options.add(opt);
	if(opt.val == selval)
	{
		selectbox.options(selectbox.options.length - 1).selected = true;
	}
}