/* ------------------------------------------------------------------------------
 * jQuery BlueSteam SelectBox
 * 
 * version: 0.2 - 30.10.2008
 * email: 	info@bluesteam.com.pt
 * website: http://www.bluesteam.com.pt
 * 
 * jQuery v1.2.6min
 * ------------------------------------------------------------------------------
 */

$.fn.selectBox = function (options) {
	
	var defaults = {
		selectBoxId:		'cb',
		labelDivId:			'cb_label',
		onChange:			function (str) {},
		changeOnLoad:		true
	};  
	var options = $.extend(defaults, options);
	
	$("#" + options.selectBoxId).change(function () {
		var str = $("#" + options.selectBoxId + " option:selected").text();
		var value = $("#" + options.selectBoxId + " option:selected").val();
		$("#" + options.labelDivId).text(str);
		options.onChange(value);
	});
	
	if (options.changeOnLoad) {
		var str = $("#" + options.selectBoxId + " option:selected").text();
		$("#" + options.labelDivId).text(str);
	}
};
