$(document).ready(function ()  {
  
  $('.select-page').linkselect(  {
      change: function ( li, value, text )  {

      if( value != "" )  {
        document.location.href=value;
      }
   }
  });
});

