function setOptions(dest,val,arraySource)
{
	dest.length = 0;
	dest.options[0] = new Option('--------------------------------------','0'); 
	index = 1;
	for(i=0;i<arraySource.length;i++)
	{
		if(vState[i][0] == val)
		{
			dest.options[index] = new Option(arraySource[i][2],arraySource[i][1]); 
			index++;
		}
	}	
}