Try changing your code slightly:
FIRST PAGE:
session.setItem(‘region1’, $w(‘#Africa’).value);
wixLocation.to(“/yourotherpage”);
//need to add wixLocation to your imports on this page
SECOND PAGE:
const regiondropdown = session.getItem(‘region1’);
$w(‘#regiondropdown’).value = regiondropdown;