Try as I might, I couldn't get the dropdown to reset using the form solution. However, I have come up with a bodgy workaround.
I set up a global variable (ClearCollect...) on the home page which creates a collection 'vars' with a variable 'temp' = 1 : on every page, the OnVisible multiplies it by -1 so in effect every time the page is loaded, the variable swings from 1 to -1.
My dropdown list of items is also held in a collection : in each page's OnVisible,
ClearCollect(vars,{temp:First(vars).temp*-1});
If(First(vars).temp=1,
ClearCollect(menulist,{Title:"Go to...",Screen:home,URL:""},menu),
ClearCollect(menulist,{Title:"Go to... ",Screen:home,URL:""},menu))
and the dropdown's items = menulist
in other words, I subtly change the list of items driving the dropdown (note the space after the second 'Go to... ') every time the page loads, so it forgets the old Selected
inelegant but it seems to work!