Dropdown Menu Navigation link to change state on multistate box on another page?

Hello - I have a drop down menu that I’ve coded so that when an option is selected, it goes to the corresponding link.

$w( "#hou100dropdown" ).options = [ 
    {  "label" :  "101 | What is a Mortgage?" ,  "value" :  "/101#02"  }, 
    {  "label" :  "102 | Downpayments Explained" ,  "value" :  "/101#02"  }, 
    {  "label" :  "103 | Credit Scores" ,  "value" :  "/101#03"  }, 
    {  "label" :  "104 | Interest Rates Explained" ,  "value" :  "/101#box4"  }, 
    {  "label" :  "105 | How much do I qualify for? " ,  "value" :  "/101#box5"  }. 
]; 

I would like to be able to have the value (link) automatically take the user to the new page and change the multitstate box to the proper slide.

1st Page with Drop Down Menu - www.homeowneruniversity.io/courses
2nd Page with Multistate Box - www.homeowneruniversity.io/101

Thank you!