I have 2 radio buttons and jquery running.
first
You can use .change for what you want
.change
$("input[@name='lom']").change(function(){ // Do something interesting here });
as of jQuery 1.3
you no longer need the '@'. Correct way to select is:
$("input[name='lom']")