function selectArchive()
{
    var myindex  = document.archiveForm.archive_id.selectedIndex
    var SelValue = document.archiveForm.archive_id.options[myindex].value
    var baseURL  = SelValue;
    window.location.href = baseURL;
    return true;
}
