$(document).ready(function() {

    // store of current values
    var current;

    // drop down listener
    $('#select_8').change(function() {
        $("#" + current).hide();
        $("#" + this.value).show();
        current = this.value;
    });

});

