Добавьте Атрибут selected = "selected" к элементу option, который вы хотите выбрать.
псевдокод
function foo()
{
create list of option elements
generate random number
get a single option element at index of random number
set all options attribute "selected" = null
set the option element[at index of random number] attribute selected = "selected"
}