I got it to work. <script type="text/javascript"> $(function() { $("#stateHolder > div").hide(); $("#stateList").change( function(){ $("#" + $ (this).val() ).show() } );
}); </script> Now I need to figure out how to hide the other divs before loading the new one. Is there anyone who can help with that?