<input type="radio" name="first" value="1" >
<input type="radio" name="first" value="2" >
<input type="radio" name="second" value="1" >
$(document).ready(function () {
var inputBoxfirst = $("input[type=radio]");
var inputBoxsecond = $("input[name=second]");
inputBoxfirst.click(function(){
if($(this).val()==1) {
inputBoxsecond.prop('checked', true);
}
else{
inputBoxsecond.prop('checked', false);
}
});
});