I tried but it didnt work, not sure I explained correctly the issue, I`ll try again I have a list of items in the dropdown menu the first line is "--Select Route--" the rest are the different routes to be choosen. when I choose an item from the list its directed to a page (which is what I wanted) but when I go back to the dropdown menu, the last item choosen is on top of the list instead of "--Select Route --" So what I would like to do is to have some kind of code to make sure after the item is choosen "--Select Route --" remain on the top of the list




You could use this as calculation script:
if(event.value != "-- Select Route --")
event.value = "-- Select Route --";
When you make selection it will jump to that page and return selection to "-- Select Route --".