function submitThis(select) {
    var str = select.value;
    
    if (str != '') {
        var path = 'http://www.technicalpooh.com/phpbb/index.php';
        newLocation = path+str; 

        window.open(newLocation);
    }
    
    return false;
}