Link from dropdown menu to change state on another page?

@daneanar You could utilize the wix-storage API to store the state in the page with the dropdown, and then in the onReady of the page with the multistate box, apply the state. If the label of the dropdown is the actual name of the state on the other page, it would go like this:

import {session} from 'wix-storage';
export function hou100dropdown_change(event) {
    session.setItem("state", $w("#hou100dropdown").label);
    let gotoUrl = $w("#hou100dropdown").value;
    wixLocation.to(gotoUrl);
}

Then on the page with the multistate box:

import {session} from 'wix-storage';
$w.onReady(function () {
    let state = session.getItem("state");
    $w("#statebox").changeState(state);
});