function packstation ()
{
   if(document.order.chkpack.checked == true)
                                        {
                                                document.order.packnr.value = 'Packstationsnummer: ';
                                                document.order.postnr.value = 'PostNummer:';
                                                document.order.packstr.value = 'Packstation';
                                                document.order.countryoption.style.display = 'none';
                                                document.order.countryoption.setAttribute('disabled', 'disabled');
                                                document.order.countryoption.value = 'Deutschland';
                                                document.order.optvalue.style.display = 'inline';
                                                document.order.optvalue.value = 'Deutschland';
                                                document.order.optvalue.removeAttribute('disabled');
                                                document.order.hiddencountry.style.display = 'inline';
                                                document.order.hiddencountry.removeAttribute('disabled');
						document.order.hiddencountry.value = 'a7c40f631fc920687.20179984';
                                        }

                                else
                                        {
                                                document.order.packnr.value = 'Strasse, Hausnummer:';
                                                document.order.postnr.value = 'Firma:';
                                                document.order.packstr.value = '';
                                                document.order.countryoption.style.display = 'inline';
                                                document.order.countryoption.removeAttribute('disabled');
                                                document.order.optvalue.style.display = 'none';
                                                document.order.optvalue.disabled.setAttribute('disabled', 'disabled');
                                                document.order.hiddencountry.style.display = 'none';
						document.order.hiddencountry.value = '';
                                                document.order.hiddencountry.setAttribute('disabled', 'disabled');
                                        }
}
