diff --git a/city-bill.js b/city-bill.js new file mode 100644 index 0000000..755abf5 --- /dev/null +++ b/city-bill.js @@ -0,0 +1,12 @@ +var cities = { + ALVA:{min:10.0, rate:5.55}, + ADA:{min:10.35, rate:5.60}, + BIXBY:{min:10.85, rate:5.63} +}; + +$(document).ready(function(){ + $('#city').empty(); + $.each(Object.keys(cities), function(i, p){ + $('#city').append($('').val(p).html(p)); + }); +}); diff --git a/index.html b/index.html index a7f7cdc..ffbc3b9 100755 --- a/index.html +++ b/index.html @@ -296,7 +296,7 @@

- Pool + Pool

Pool

@@ -402,11 +402,34 @@

Your total selected

+
- + + + +
+

Estimate Water Bill:

+

+ + +

+
+ +

 
+
diff --git a/okstate_img/pool.png b/okstate_img/pool.png new file mode 100644 index 0000000..7a2d2f1 --- /dev/null +++ b/okstate_img/pool.png Binary files differ