function moveUrl(selection,base_url){
    var url = base_url + selection[selection.selectedIndex].value;
    if(url != ""){
        location.href = url;
    }
}


