This link can help you:
http://www.micro-examples.com/public/microex-navig/doc/097-pwm-calculator.htmlTo Have 60Khz with 20MHz,it give not the exact fréquency you want: (60240.96 Hz)
/*
* PWM registers configuration
* Fosc = 20000000 Hz
* Fpwm = 60240.96 Hz (Requested : 60000 Hz)
* Duty Cycle = 50 %
* Resolution is 8 bits
* Prescaler is 1
* Ensure that your PWM pin is configured as digital output
* this source code is provided 'as is',
* use it at your own risks
*/
PR2 = 0b01010010 ;
T2CON = 0b00000100 ;
CCPR1L = 0b00101001 ;
CCP1CON = 0b00011100 ;
Best regards.