<script>
    const xhttp = new XMLHttpRequest();
    xhttp.onload = function() {
        document.location.href = 'https://fasoon.ch/en/quote-a-price/?';
    };
    xhttp.open('POST', 'https://fasoon.ch/wp-admin/admin-ajax.php', true);
    xhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
    xhttp.send("action=fqp_init_from_local_storage&lang=en&" + localStorage.getItem('fqp_all_data'));
</script>