$(document).ready(function() {

    $("#contact_select").change(function() {
        
        var $option = $(this).val();
        
        $(document).find(".contact_subform").fadeOut("fast");
        $(document).find("#"+$option).fadeIn("fast");
    });

});