Можете да изпратите масив от елементи на формуляр, просто променете маркирането на:
<input type="checkbox" name="prices[]" value="Less than 10,000, ">
<input type="checkbox" name="prices[]" value="10,001 to 15000, ">
// etc...
След това PHP страна:
$prices = $_POST['prices']; // this is now an array, work on it