 $(function() {
 
  $('#funds select').change(function() { $('form#funds').submit() });

  $('form#funds').submit(function() { 
    
    // get the value from the appropriate list
    var target_url = $('select[@name=fund_prices]').val();
    
    if(target_url == '#') {
      alert("Please choose an item from the dropdown list");
      return false;
    }
    //document.location(target_url,'smallWindow','location=no,scrollbars=yes,menubar=no,toolbar=yes,resizable=yes,left=75,top=75,width=760,height=500');
     
	window.location = target_url;

    return false;
  
  });
 
}); // end onready