function navigateToLink(selectBox)
{
    if(selectBox.value != '')
    {
        window.open(selectBox.value);
    }
    
    var html = "<div style=\"color:#000;\">You should have been redirected, if not, <a href=\'"+selectBox.value+"\' target=\"_blank\"><span style=\"color:#00f;\">click here</span></a>.</div>";
    jQuery.facebox(html);
}