Okay, here we go...
1) Go to admin/modules/Operations/Operations.php
2) Find the following line... (Around Line 950 to 1150)
$data = array(
'code' => $this->post->code,
'flightnum' => $this->post->flightnum,
'depicao' => $this->post->depicao,
'arricao' => $this->post->arricao,
'route' => $this->post->route,
3) Add before the line I posted above the $data = array
$payperdis = ($this->post->distance/100)*20;
4) Then we need to change the $data arrays, so find this, in the same area
'price' => $this->post->price,
5) Replace the code with the following...
'price' => $payperdis,
And it should do it automatically for you, and if you putted in the price, remember, it will change because of that.