// JavaScript Document
function showRates(){ 
    $(".rateDisc").show()
  }; 
function hideRates(){ 
    $(".rateDisc").hide();
  };  
$(document).ready(function(){
						   
if(checkDisplay == true){						   
   showRates(); 
	};
});

function checkZip(){
	re = /^\d{5}$/;
	zipValue = document.getElementById("zip")
	result = (re.test(zipValue.value));
  if(result){
	  return true;
  } else {
	  $(document).ready(function(){$('#invalidZip').show();});
	  return false;
  };
};