﻿$(document).ready(function () {

    $('#descfor0, #descfor1, #descfor2').hide();

    $("input:checked").each(function (i, e) {

        $('#descfor' + this.id.substring(9, 10)).show();

    });

    $("input[@name='InputType']").change(function () {

        $('#descfor0, #descfor1, #descfor2').hide();
        $('#descfor' + this.id.substring(9, 10)).show();


    });



});
