Get Value of Select and Load external file to div (jQuery)
$(document).ready(function(){
$('#contactFormSelect :selected').val();
$("#contactFormSelect").change(function(){
$('#formLoader').load($('#contactFormSelect').val());
});
});
Added to JS by Mark Evans