function changeform(f){
    value = f.options[f.selectedIndex].value;
    if (value == '') return;
    if (value.indexOf('http://') == 0 || value.indexOf('https://') == 0) 
        parent.location.href = value;
    else
        document.location.href = value;
}
