function findMe(dropdown, val)
{
	for (i=0; i<dropdown.length; i++)
    {
		if (dropdown.options[i].value == val || dropdown.options[i].text == val)
        {
			dropdown.selectedIndex = i;
            break;
        }
    }
}