let number=i+1
<form action="action_page.php" method="post">
или
<form action="action_page.php" method="get">
<select id="select" onchange="func(this)">
<script>
function func(element) {
let arr = element.getElementsByTagName('option')
for (let i = 0; i < arr.length; i++) {
if (arr[i].selected == true) arr[i].value = arr[i].textContent
}
}
</script>
window.onload = function () {
let url = window.location.href.split('#');
let link_id = url[url.length-1];
if(document.getElementById(link_id)) {
document.getElementById(link_id).classList.add('active-link');
setTimeout( () => document.getElementById(link_id).classList.remove('active-link'), 10000)
}
}
.active-link {
color: red;
/*
тут любые стили активной ссылки и транзишны которые ты хочешь
*/
}