Sie können ein Array von Formularelementen senden, ändern Sie einfach Ihr Markup in:
<input type="checkbox" name="prices[]" value="Less than 10,000, ">
<input type="checkbox" name="prices[]" value="10,001 to 15000, ">
// etc...
Dann, PHP-Seite:
$prices = $_POST['prices']; // this is now an array, work on it