$(document).ready(function() {
	$('#searchForm input:radio').click(function(){
		this.form.action = $(this).val();
	});
});