Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function processSelection()
  2. {
  3.   $.post("handler.php", { selectValue: $("#select1").val() },
  4.     function(data) {
  5.       $("#textboxContainer").html(data);
  6.     });
  7. }
  8.