Currency (price) formating on custom fields

if you want to process the field after submitting, php’s number_format function is what you need:

$price = number_format( $number, 2, '.', ',' );

but if you want to change how the number is displayed as it’s typed in, try jQuery autoNumeric