function getOptionsForSelect(src, params, target)
{
  params['target'] = target;
  $.get(src, params);
}

$(document).ready(function () {
  $('.side_nav_active h4 a').each(function () {
    $(this).replaceWith($(this).text());
  });
});
