 $(document).ready(function() {
   $("#product-list-wrapper").load("scripts/list.htm", '', function(){
     $('#product-list').change(function () {
       window.location.href = $(this).attr('value');
     });
   });   
 });
