$('input[type=radio]').click(function () {
                $('input[type=radio]').removeAttr("checked");
                $(this).prop('checked', true);
            });