$(document).ready(function(){

	$("#run_search").click(function(){ $("#frmsearch").submit(); return false; });
	$("#cancel_exit").click(function(){
		var href = $(this).attr("href");
		Lightbox.confirm("Are you sure? All criteria will be lost.", function(){
			window.location = href;
		});
        return false;
	});

	$("#country_id").change(function(){ lookupSelect("country_id", $(this).val(), "tb_region", "region_id", "description"); return false; });
	$("#region_id").change(function(){ lookupSelect("region_id", $(this).val(), "tb_location", "location_id", "description"); return false; });

    $(".industryCheckBox").click(function(){
        //check if adding or removing
        if($(this).is(':checked')){
            var label = $(this).next().html();
            //$("<li><img src='images/icons/deletex.gif' style='border: 1px solid #6e6e6e; cursor: pointer;' class='selectedItemDelete' id='"+$(this).val()+"'> " + label + "</li>").appendTo("ul.selectedIndustries");
            $("<li><a href='google.com' class='milk' onclick='alert('as')'>Testtt</a></li>").appendTo("ul.selectedIndustries");
        }
        else{
            $(".selectedIndustries li").last().remove();
        }

    });
});