function start() {
                $(document).ready(function() {
                    $('#jumpmenu select').change(function() {
                        //var link = this.options[this.selectedIndex].text;
                        //var parts = link.split(':');
                        //var rslt = "";
                        //var countr = 0;
                        //for (var n = 0; n < 2; n++) {
                        //    countr += parts[n].length + 1;
                        //}
                        //countr += 6;
                        //rslt = link.substr(countr, link.length - countr);
                        //location.href = 'http://www.quicktrainer.biz/blog/Post/' + rslt + '.html';
                        location.href = "http://www.quicktrainer.biz/Blog/?PostID="+ $('#jumpmenu select').val();
                    });
                });
            } 
