I have a form with a select field and a div i wish to update with a value depending on what the user selects.
Example:
The general idea:
$(function() { $("#msel").change(function(){ $("#myresult").html("This is " + $("#msel").val() + " and other info"); }); });
With more specifics I can do better. ;-)