function reloadCpDestination() { if (document.getElementById('paysDest') && document.getElementById('anneeDepot')) { var paysDest = document.getElementById('paysDest').value; var url = 'reloadCpDestination.do?paysDest=' + paysDest; var day=document.getElementById('jourDepot').value; var month=document.getElementById('moisDepot').value; var year=document.getElementById('anneeDepot').value; if (day!='' && month!='' && year!='') { if (day<=9) day = '0'+day; var dateDepot = year+month+day; url = url+'&year='+year+'&month='+month+'&day='+day+'&dateDepot='+dateDepot; } if (document.getElementById('cpDest')) { var cpDest = document.getElementById('cpDest').value; url = url+'&cpDest='+cpDest; } //url = getUrlWithMandarotyFormParameter(url); url = getUrlWithFormParameter(url); //alert('reloadCpDest:'+url); new Ajax.Updater({success:'reloadcpdest', failure:'page'}, url, { method: 'get', evalScripts: true } ); } }