I found that the ClientId of the RadioButtonList is good enough.
$(document).on('click', "#RBL1_CliendId input", function() {
if($(this).prop("value") == 3){
// do something
} else {
// do something else
}
});