.post question

.post question

Hi There,
I can use some help here.  I have several radio buttons, when a user selects a button an "change" event fires, which triggers a AJAX / .post function.  Each radio button show's different results.  Here's the issue -  the screen shot provided has a link called "Classic Climbs";  when a user clicks on "Classic Climbs" I would like to run another AJAX / .post function - basically grabbing an RSS feed from another server and show the results.  Since I have to pull over 15 items, I would like them to load each item individually with an "click" event.   I'm parsing the RSS / XML with PHP.  I've included my existing .post code below.  Any ideas on how to run the second .post function? 

Thanks,
CH

$(document).ready(function() {
$("input.ratings").change(function() {
var type = $("input.ratings:checked").val();
var uid = $('input.uid').val();
if ((type == 'alpine') || (type == 'aid') || (type == 'boulder') || (type == 'ice') || (type == 'rock')) {

$('#contentLoading').ajaxSend(function(){
$("#contentLoading").show();
});

$('#contentLoading').ajaxStop(function(){
$("#contentLoading").fadeOut("fast");
});

$.post('./include/countries.inc.php',  {
  type: type
  }, function(txt) {
  //remove this msg box for production use.
  $("#msg").fadeIn("slow").html(txt);
  $('.item li:nth-child(1)').addClass('li_stripe');
  $('.rock_table tr:nth-child(even)').addClass('stripe');
$('a.showroutes').html('Show / Hide Featured Climbs');
$("a.showroutes").click(function() {
$('.routebucket').slideToggle("fast").show();
return false;
});

//close AJAX request
});
//close if statement
}
});
});

$(document).ready(function() {
$("#contentLoading").hide();
});