﻿function OnChange(dropdown) {
    var myindex  = dropdown.selectedIndex
    var SelValue = dropdown.options[myindex].value
    var baseURL  = "?cid="
    top.location.href = baseURL + SelValue;
    return true;
}
