function DD_jumpMenu( my_select ) {

        var my_Selection = my_select.selectedIndex;

        if ( my_Selection == 0 ) {

                alert( "Please select a location!" );

        } else {

                cururl = my_select.options[ my_Selection ].value;

                window.location.assign( cururl );

        }

}
