$(document).ready(function() {
	$("#lead_region_id").change(function(){
		selected = $(this).val().split(":")
		//alert($(this).val())
		$(".quote-count-notice").hide()
		if(selected[1] < 3){
			h = $(".quote-count-notice").html().replace(/<strong>(.*)<\/strong>/g, "<strong>"+selected[1]+"</strong>")
			$(".quote-count-notice").html(h).show("bounce")
		}
	})
})