$(function() {
	function request_state() {
		$('select#request_state').change( function(event) {
			$.get('/actions/twc-coverage.php?state='+$(this).val(), function(data) {
				$("#market_wrapper").html(data).css('height','auto');
				showLightBox($("#market_box"), true, true);
				request_state();
			});
		});
	}

	$('a#button_check-if-you-serve-a-twc-market').click( function() {
		$.get('/actions/twc-coverage.php', function(data) {
			$("body").append('<div id="market_wrapper" class="lightbox"></div>');
			$("#market_wrapper").append(data);
			showLightBox($("#market_box"), true, true);
			
			request_state();
		});
		return false;
	});

});
