function learningCenterNav(selectCtrl,linkCredit)
{

  var action = selectCtrl.options[selectCtrl.selectedIndex].value;
  
  if (action == "paymentEstimator")
  {
	 document.learnNav.action=appContext + "/en/planningCenter/paymentCalculator.jsp";
	 document.learnNav.submit();
  } else if (action == "budgetCalculator")
  {
	 document.learnNav.action=appContext + "/en/planningCenter/planningCenter.jsp";
	 document.learnNav.submit();	
  } else if (action == "whatCanIDrive")
  {
	document.learnNav.action=appContext + "/en/planningCenter/planningCenterAfford.jsp";
	document.learnNav.submit();
   }else if (action == "applyForCredit")
  {
	document.learnNav.action=linkCredit;
	document.learnNav.submit();
   }

} 