function dataput()
{
    var ship_firstName = $('ship_firstName').value;    
    var ship_lastName = $('ship_lastName').value;    
    var ship_street = $('ship_street').value;    
    var ship_city = $('ship_city').value;    
    var ship_state = $('ship_state').value;    
    var ship_postcode = $('ship_postcode').value;    
    var ship_country = $('ship_country').value;    
    var ship_phone = $('ship_phone').value;    
    var ship_email = $('ship_email').value;   
    
    if($('chkDataPut').checked == true){
        $('ship_firstName').value = $('bill_firstName').value;
        $('ship_lastName').value = $('bill_lastName').value;
        $('ship_street').value = $('bill_street').value;
        $('ship_city').value = $('bill_city').value;
        $('ship_state').value = $('bill_state').value;
        $('ship_postcode').value = $('bill_postcode').value;
        $('ship_country').value = $('bill_country').value;
        $('ship_phone').value = $('bill_phone').value;
        $('ship_email').value = $('bill_email').value;
    } else {
        $('ship_firstName').value = '';
        $('ship_lastName').value = '';
        $('ship_street').value = '';
        $('ship_city').value = '';
        $('ship_state').value = '';
        $('ship_postcode').value = '';
        $('ship_country').value = '';
        $('ship_phone').value = '';
        $('ship_email').value = '';
    }
}