function chng_page()
{
var select_index = document.getElementById('names').selectedIndex; 
var option_value = document.getElementById('names').options[select_index].value;
window.location = option_value;
}

