// http://jsfiddle.net/VgAgu/116/

$(document).ready(function() {
    $("input[name$='public_response']").click(function() {
        var test = $(this).val();

        $("div.desc").hide();
        $("#confidentiality" + test).show();
    });
});
