javascript:(function() {
	var target = document.querySelector( 'input:focus' ),
		list=Array.from(document.querySelectorAll( 'input[type=radio][value="' + target.value + '"]' )),
		i = list.findIndex( v => v === target );
	console.log(i);
	list.slice(i).forEach( v => v.click() );
} )();
void(0);